home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 July / PSL Monthly Shareware CD-ROM (Public Software Library) (July 1994).iso / reviews / u2_04 < prev    next >
Text File  |  1994-02-23  |  57KB  |  1,466 lines

  1. U2-04:  Operating System Utilities
  2.  
  3.  
  4. ------------------------
  5. 1346 DOS Command Editors          Small Programs Disk
  6. ------------------------
  7.  
  8. For an understanding of what DOS Command Editors do, read the CED writeup
  9. first. CED (and the others) are similar in some ways to key macro programs and
  10. "shorthand" utilities which allow you to type in just part of a word and the
  11. computer fills in the rest. For more on these utilities, see the Keyboard
  12. section.
  13.  
  14. Note: Many BBS's and libraries still carry DOS-EDIT even though it is a
  15. pirated program and not public domain. DOS-EDIT was sold by IBM in its
  16. Personally Developed Software series under the name RETRIEVE. Besides DOS-EDIT
  17. not being public domain, CED is much better anyway. To further confuse things,
  18. PC Magazine also came out with a similar utility with the name DOSEDIT. CED is
  19. still better.
  20.  
  21. Command EDitor (CED)
  22.    Dunford, Christopher J.
  23.    $0
  24. is a TSR that improves command line editing in DOS, lets you scroll back
  25. through previous commands to edit and/or re-execute them, lets you create the
  26. equivalent of in-memory batch files,
  27.  
  28.      -command scrolling:  you can use the up and down cursor keys to scroll
  29. back through previously entered commands in DOS.  If you are doing repetitive
  30. tasks while in DOS, this keeps you from having to retype the same lines over
  31. and over.
  32.  
  33.      -use of the cursor keys: now if you make a mistake while typing in DOS,
  34. you can use the cursor keys to go back and correct it instead of having to
  35. erase what you have already typed.  This feature combines nicely with command
  36. scrolling.  For example, if you want copy the file DATABASE from drive C:  to
  37. drive A:  and then to drive B:, at the C> prompt you would enter COPY DATABASE
  38. A:  and when it was done, press the up cursor.  This redisplays the last
  39. command and leaves the cursor at the end of the command so that all you have
  40. to do is press the left cursor key twice change the A to B and press Enter.
  41.  
  42.      -recall of program parameters (PCALL): after you have run a program once,
  43. the next time you call the program, CED will insert the same parameters for
  44. you. For example, if you enter
  45.  
  46.          link myprog+module1+module2+module3+module4+module5+module6
  47.  
  48. the next time you run LINK, all the rest of the line will be entered for you
  49. automatically.
  50.  
  51.      -synonyms:  have you ever typed in DUR or DRI instead of DIR? No sweat.
  52. Just tell CED that when it sees those popular typo's, to treat them as DIR.
  53. DOS-Edit referred to these as Aliases.
  54.  
  55.      A simple CED synonym definition is set up like this:  CED SYN DUR DIR.
  56. This tells CED that if you type in DUR, to substitute the word DIR in its
  57. place before passing it along to DOS to act on.  Nice, but where the power of
  58. synonyms comes into play is that you can use variables the way you would in
  59. batch files, and you can chain a series of commands to be assigned to one
  60. synonym.  Example:
  61.  
  62.                    CED SYN EDIT CD \WP^WS %1^COPY %1 A:^CD\
  63.  
  64.      Now if you enter EDIT LETTER.TXT, the current directory will be changed
  65. to WP, your word processing subdirectory, WordStar will be called and told to
  66. edit the file LETTER.TXT.  When you finally exit WS, the file LETTER.TXT will
  67. be copied to a backup disk in drive A:, and you will be returned to the root
  68. directory again.
  69.  
  70.      -MANY OF YOUR BATCH FILES ARE NO LONGER NEEDED. On a hard disk, a small
  71. batch file to do the job that the synonym above is doing would take up the
  72. drive's minimum allocation of space, which may be as much as 8,000 characters.
  73. If you have many of these little batch files, they can use up and enormous
  74. amount of disk space.  Now you can make them into synonyms and free up that
  75. disk space.
  76.  
  77.      -SYNONYMS RESIDE IN MEMORY and execute at RAM speed instead of disk
  78. speed.  If you have a floppy based system, you no longer have to switch disks
  79. to use a batch file, and the speed increase is remarkable.
  80.  
  81. Cedsyn 1.02
  82.    Modak, Anand
  83.    $?
  84. creates CED Synonyms for changing directories.  (See write-up of CED, above.)
  85. CEDSYN reads your hard disk and creates a SYN of a "2" followed by the
  86. directory name for each directory.  Then when you want to change directories
  87. (say, for example, to C:\WP\LET), you would just enter "2LET" and the CED SYN
  88. will execute the command CD\WP\LET.  After CEDSYN has added the synonyms to
  89. your CED file, it does not have to be run again.
  90.  
  91. AI 2.1
  92.    Toft, George
  93.    $24
  94. is an artificially intelligent command line interface that corrects your typing
  95. errors in DOS by learning what you really meant based on your previous mistakes
  96. and corrections. It also allows the use of cursor keys on the DOS command line.
  97.  
  98. CShell
  99.    is a COMMAND.COM replacement.  It implements unix-like shell commands such
  100. as ls, mv, fgrep, rm, chdir, chmod,etc.  It also allows recalling and editing
  101. previous commands.
  102.  
  103. DOSinp 1.0
  104.    Mercie, Kenneth J.
  105.    $10
  106. is another one of those memory resident programs that provide DOS command line
  107. editing.  Along with the editing features, DOSINP will let you recall the
  108. previous 20 command line entries; display a window with the available previous
  109. commands; delete unwanted commands from the command window; program the 10
  110. Function keys; flush the typeahead keyboard buffer, at any time; remove TSR's
  111. from memory.  At only 8k of DOS RAM used for DOSINP, this is a very attractive
  112. alternative to similar utilities.  (res:8k)
  113.  
  114. Edicom-12 (EDC)
  115.    Edicom Systems
  116.    $26
  117. is a DOS command processor and more.  It will recall up to 12 previous
  118. commands entered in DOS for easy changing and re-execution.  It lets you
  119. execute commands with a single keystroke, find files, page through text files,
  120. and prevent accidental overwriting of files - all without slowing you down
  121. while working in DOS.
  122.  
  123. History
  124.    Rubenstein, Michael M.
  125.    $?
  126. is a DOS command recall and editing utility with a nice touch - the ability to
  127. recall a previous DOS command line without scrolling back through them all by
  128. entering the first few letters and pressing Ctrl-L.  History is interesting in
  129. that most of the command and editing function keys are also executable as
  130. control key combinations, for those who don't like to pick up their hands from
  131. the keyboard.  Another interesting feature is the History's ability to search
  132. the command buffer for a line that matches the first few characters entered.
  133. (res:5.5k)
  134.  
  135. LogOut 1.71
  136.    Messer, Greg
  137.    $0
  138. is a 1k TSR that will send keystrokes to the keyboard after a specified period
  139. of system inactivity has passed. The result is the same as if you manually typed
  140. the keystrokes. You may specify that "system inactivity" be determined by
  141. monitoring any combination of the keyboard, disk, printer or screen.
  142.  
  143. LogOut could be used to save work, close files, exit a program, log off a
  144. network, etc, when a system is not used for a period of time. Up to 127
  145. keystrokes can be stored in a file for passing to the keyboard.
  146.  
  147. Recall 2.1
  148.    g.r.a.m.  Associates
  149.    $?
  150. permits the user to retrieve any one of up to 50 unique DOS commands
  151. previously issued by the user. Once retrieved, the command may be executed as
  152. is or modified by the user via the normal DOS line editing keys.
  153.  
  154. Show (SHOW-DT)
  155.    Toedt, D. C.
  156.    $0
  157. is a batch file that allows beginning users to easily execute many common DOS
  158. commands without having to remember the syntax.
  159.  
  160. --------------------------------
  161. END OF SMALL PROGRAMS DISK #1346
  162. --------------------------------
  163.  
  164.  
  165. ----------------------------
  166. 12014 DOS Command Editors #2          Small Programs Disk
  167. ----------------------------
  168.  
  169. PC-Shell
  170.    is a command processor for IBM-PC's and compatibles that emulates some of
  171. the more desirable functions of the Berkeley UNIX* C-shell.  In addition, it
  172. implements PC-DOS versions of some of the common UNIX* commands such as ls,
  173. mv, cp, etc.  It also allows "history substitution" which saves retyping of
  174. long command lines.
  175.  
  176. It allows you to do things like re-execute the last command, re-execute the
  177. last command but redirect output to a file, or execute a new command with
  178. arguments from previous command lines. The last 20 commands are saved, and can
  179. be reviewed by typing the 'history' command.
  180.  
  181. Previous commands can be referred to by their number, or relative to the
  182. current command's number. Parameters from previous commands can be seperated
  183. out and used individually.
  184.  
  185. Recall 1.0 (R-CALL)
  186.    CompuTech
  187.    $33
  188. is a 10k TSR which will pop up a window to allow you to recall, edit and
  189. reexecute commands previously entered at the DOS prompt. Commands can also be
  190. marked for play-back at a specific date and time.
  191.  
  192. Stack 2.4
  193.    Bergl, Shane
  194.    $?
  195. allows you to recall commands that were typed in DOS and to edit the DOS
  196. command line using the cursor keys.  While there are several similar utilities
  197. around, this one lets you view a list of the commands that are in the stack
  198. and assign them to function keys.
  199.  
  200. Toddy 6.0 [TODDY] 01-94 CD
  201.    Tauck, Eric
  202.    $10
  203. is a 2k TSR utility that enhances the built-in DOS line editing and provides a
  204. command scroll-back, similar to CED and the old DOS-EDIT. Other features
  205. include chained commands and macros. Macros and the command history may be
  206. saved and loaded from a file. DOS editing keys are supported, and much more.
  207.  
  208. Viper 3.11 (VIPERBF)
  209.   Freshour Software
  210.   $20
  211. is a DOS command line editor. It remembers keystrokes typed in at the DOS
  212. prompt and provides a visual window to view, edit and select previous DOS
  213. commands for re-execution.
  214.  
  215. Other features include mouse support, trashcan file deletion, function key
  216. assignments, digital battery watch for portable computers, high memory
  217. management compatibility and more.
  218.  
  219. ---------------------------------
  220. END OF SMALL PROGRAMS DISK #12014
  221. ---------------------------------
  222.  
  223.  
  224. Anarkey
  225.    Calwas, Steven
  226.    $34
  227.    #1827
  228. is a command-line editor that will significantly reduce the number of
  229. keystrokes made when entering DOS commands. Features include retrieval of
  230. previous DOS commands, multiple commands per line, a 255-character command
  231. line, environment editing, and support for LIM EMS memory. Other features
  232. include pop-up windows to retrieve past commands, complete filenames, edit
  233. environment variables, or display program help; full support for enhanced
  234. keyboards; special support for Windows 3.0 in 386 Enhanced mode; and mouse
  235. support.
  236.  
  237.  
  238. -------------------------------
  239. 0276 DOS Access and Environment          Small Programs Disk
  240. -------------------------------
  241.  
  242. 0276 DOS Access
  243. ---------------
  244. ED 3.0 (ED-SG)
  245.    Genusa, Stephen V.
  246.    $20
  247. is a very handy way to edit the DOS environment (where you can easily modify
  248. your DOS path, for example), your CONFIG.SYS file and AUTOEXEC.BAT file.  It
  249. also reports some basic system information such as memory installed (standard
  250. ram, extended & EMS), ports installed, and more.
  251.  
  252. HotDOS
  253.    Best, Robert
  254.    $20
  255. allows any currently executing program to be temporarily suspended so that a
  256. second copy of COMMAND.COM can be loaded and run in the background.
  257.  
  258. ShRoom 2.0a
  259.    Augustine, Davis
  260.    $25
  261. is a utility that gives you more room when Shelling to DOS from an application.
  262. It works by swapping the application to disk, freeing up all but 6k of memory.
  263. When you Exit the Shell, it automatically swaps your application back again.
  264.  
  265. SWAP 1.2 (SWAP-NM)
  266.    Mak, Nico & Mansfield Software Group
  267.    $0
  268. frees up DOS RAM when you have shelled to DOS from some program by swapping
  269. the memory the program is using to EMS, extended memory or a hard disk. For
  270. example, if you are programming in an editor and want to shell to DOS to
  271. compile, you may find that the editor is taking up too much DOS RAM to allow
  272. the compiler to run. All you have to do is run SWAP and the editor's area of
  273. DOS RAM will be swapped out, allowing the compiler access to nearly all of DOS
  274. RAM. When you quit the second program, the first program is swapped back into
  275. memory.
  276.  
  277. TST
  278.    Microsystems Software, Inc.
  279.    $10
  280. is a 6k (or less) TSR that lets you run any program while in another program,
  281. including those using graphics, a mouse or a coprocessor. It works by swapping
  282. the programs back and forth to disk, so a hard disk is recommended.
  283.  
  284. 0276 DOS Environment Utilities
  285. ------------------------------
  286. AddPath
  287.    Quillen, Ed
  288.    $0
  289. extends the DOS path string beyond 127 bytes. Requires DOS 3+.
  290.  
  291. Edenv 1.5
  292.    Bovee, Bill
  293.    $?
  294. allows modifying the contents of the DOS environment, such as the defined PATH.
  295.  
  296. EE2
  297.    Graham, Keith P.
  298.    $?
  299. is a DOS Environment Editor.  Since the "DOS environment" contains such goodies
  300. as where DOS should look for COMMAND.COM and the PATH and PROMPT configurations,
  301. none of which DOS allows you to edit, EE can really save you a lot of time and
  302. trouble.  With EE, all you have to enter is the new subdirectory name.
  303.  
  304. ENV-Read
  305.    displays strings in the environment.
  306.  
  307. EnvCount
  308.    displays the number of bytes used in the DOS Environment space.
  309.  
  310. EnvirCat 1.2
  311.    Gardner, Mark
  312.    $0
  313. allows concatenation of environment strings to form arbitrarily long strings.
  314. It is useful for generating long path statements beyond the 128 character
  315. maximum imposed by the DOS command line format.
  316.  
  317. ESET 1.2
  318.    Babulic, Mike
  319.    $0
  320. is a replacement for DOS's SET command.  ESET makes it easier to edit and enter
  321. variables in the environment.  Pascal source code is included.
  322.  
  323. NewPath
  324.    Lacobie, Kevin
  325.    $0
  326. lets you insert a subdirectory name into a PATH definition or delete one with
  327. one quick command.  While EE2 is more powerful overall, Newpath is quicker and
  328. easier to use for the tasks it performs.
  329.  
  330. Path Editor 2.0 (PED-RD)
  331.    Dittmeier, Ray
  332.    $7
  333. is an easy PATH editor for both experts and novices. Novices will like the
  334. full-screen mode in which all directory names in your PATH/drive are displayed
  335. for easy selection of a directory to delete/add. Experts will like the fast
  336. command-line option and the ability to specify multiple directory-PATH changes
  337. at once.
  338.  
  339. Post (POST-DS)
  340.    Sessions, D. C.
  341.    $0
  342. is a filter that will reversibly alter the DOS environment based on the contents
  343. of a file, which may be created by POST.  Especially useful in conjunction with
  344. tools which make heavy use of environment variables, in particular multilingual
  345. development environments.  A side-benefit is that POST accepts longer (1024
  346. byte) strings than does COMMAND.COM's SET command (128 bytes max).
  347.  
  348. ShowEnv
  349.    DOS System Utility
  350.    $0
  351. displays a list of your environment variables. Does not work under Windows.
  352.  
  353. Sit
  354.    Corry, Davidson
  355.    $0
  356. is a utility program for creating, modifying or deleting strings in the MASTER
  357. copy of the DOS environment. For example, if you run DESQview or run a program
  358. that shells to DOS, you are working in a secondary copy of the Command
  359. Processor. Issuing a PATH command at that point would not effect the master
  360. copy of COMMAND.COM. Issuing a SIT PATH command WILL effect the master copy
  361. and not the secondary one. It also adds several features to DOS's SET command.
  362.  
  363. Use
  364.    Haley, James
  365.    $0
  366. are two utility programs to add and remove directories from the path.  USE
  367. will add a directory to the path without disturbing the rest of the path, and
  368. UNUSE will remove a directory while leaving the others alone.  We have had
  369. similar utilities that did not work quite as well.  We have already added this
  370. pair to our Utility subdirectory.
  371.  
  372. XPath 1.0
  373.    Babulic, Mike
  374.    $0
  375. is a utility for changing the environment PATH variable.  Xpath works with DOS 2
  376. and up.  Pascal source included.
  377.  
  378. 0276 Emergency Help
  379. -------------------
  380. Abort
  381.    loads into memory, stays there until needed, and purports to get you out of
  382. some program lockups and back to DOS.  Whether programs like this work depends
  383. on what kind of lock-up you have.  If the system has crossed so far over into
  384. the Twilight Zone that it no longer is noticing the keyboard, your pounding on
  385. Abort's "hot keys" will do you no good.  However, there are many lockups Abort
  386. will save you from and it does not take much memory, so it's worth having
  387. there for when it does work.  (res.:  400 bytes)
  388.  
  389. CBoot
  390.    Graham, Keith P.
  391.    $?
  392. is a resident utility which lets you get out of some system lock-ups or out of
  393. programs that won't let you gracefully exit.
  394.  
  395. Last Resort 1.0 (LASTRES)
  396.    Sawada, Dr. Masaaki
  397.    $10
  398. gets you out of those system lock-ups which normally make you do a
  399. Ctrl-Alt-Del.  It cannot get you out of the hard lock-ups of the type which
  400. even ignore Ctrl-Alt-Del and make you turn the power off and back on (or hit
  401. Reset) to reboot.  We have had utilities of this type before which did not
  402. work well, but LastResort seems to work fine.  In cases where it might not be
  403. able to let you exit a program gracefully, it will also let you copy files
  404. from a RAM disk to other disks so that you don't lose them if you have to
  405. reboot.  This feature could be useful even apart from system lock-ups.
  406. Another useful side benefit is that LastResort traps the PrtSc key such that
  407. while you can still continue on and do a Print Screen, if pressing the key was
  408. an accident and you do not have a printer hooked up, it will let you escape
  409. without hanging the system.
  410.  
  411. Luther Cross, Kissimmee, FL: "When I type LASTRESO I get the help list, when I
  412. type LASTRESO.RUN I get then message "Bad command or filename".
  413.  
  414. PsL: You should just type LASTRESO RUN with a space between the words. By
  415. putting a period there, DOS thinks you are trying to execute a file with the
  416. extension of ".RUN".
  417.  
  418. Resq 3.2 (RESQ32) 09-93 CD
  419.    Yarus, Mike
  420.    $10
  421. is a utility which allows recovery of text otherwise lost in the computer.  RESQ
  422. saves buffered text, left in your computer's RAM before it was written to disk.
  423. If you've ever lost hard-won text due to a word-processing glitch, or forgotten
  424. to save that text file you just downloaded, or had to use the fire exit while
  425. testing a new program, or given the wrong answer to "Abandon current version?",
  426. you can use RESQ.
  427.  
  428. Safari
  429.    Hummel, Robert L.
  430.    $0
  431. keeps you from crashing out of a program by intercepting DOS error messages such
  432. as "Abort, Retry, Ignore" and handling them more genteelly.  Tested in PC-DOS
  433. 2.0 to 3.31.  (res:3k)
  434.  
  435. Spray
  436.    Angel, Dave
  437.    $0
  438. is designed to let you capture the contents of memory to a disk file.  One
  439. purpose of such a utility would be to salvage text that you were entering into
  440. a text editor which, for example, you quit without saving.  Assembler source
  441. is included.
  442.  
  443. Watchdog 1.0 (WATCHDO)
  444.    Sykes, Ken
  445.    $0
  446. watches PS/2 Model 50-and-up computers for system lockups and returns control
  447. to the keyboard when one occurs.  This allows you to do a warm reboot
  448. (Ctrl-Alt-Del) rather than having to power the machine off and on.  Assembler
  449. source code is provided.
  450.  
  451. --------------------------------
  452. END OF SMALL PROGRAMS DISK #0276
  453. --------------------------------
  454.  
  455.  
  456. -------------------------------
  457. 1945 DOS Command Line Utilities          Small Programs Disk
  458. -------------------------------
  459.  
  460. Execute 1.5
  461.    MAH Software Services
  462.    $10
  463. allows you to execute multiple commands from one DOS command line. Our first
  464. reaction was that this was something that could be easily duplicated with
  465. batch files or CED synonyms, but after some effort, we had to concede that
  466. Execute provides the most efficient means of executing multiple
  467. commands/programs on the fly.
  468.  
  469. It will run up to 50 internal or external DOS commands, programs, or batch
  470. files unattended one right after another. You may also specify a certain
  471. amount of time to lapse before the programs begin executing, and you can elect
  472. to be prompted before each command/program is executed.
  473.  
  474. Feed
  475.    is used to feed MS/PCDOS text files into a filtering pipeline.
  476.  
  477. FileC
  478.    Morearty, Mike
  479.    $?
  480. provides filename completion similar to that done by some versions of the Unix
  481. C Shell (also called "Tenex-style" completion).  The purpose of filename
  482. completion is so that the user doesn't have to type in long filenames when the
  483. first few characters would be enough to distinguish a filename from all other
  484. files in the directory.
  485.  
  486. Fly
  487.    Halsall, Bob
  488.    $?
  489. lets you execute several commands from the DOS command line with one entry.
  490. It does this by creating a temporary batch file "on the fly" to execute the
  491. commands and deletes it when done.
  492.  
  493. Launcher 2.21 (LAUNCHR)
  494.    Steenburgh, Chuck
  495.    $0
  496. allows you to quickly start application programs by bypassing the opening/file
  497. selection screen. It lets you select from a list of data files, then starts the
  498. application with the selected data file preloaded. It works with any application
  499. that accepts file names on the command line such as WordPerfect, WordStar,
  500. Quattro Pro, and others. Data files are sorted alphabetically, and up to 127
  501. menu color combinations may be used.
  502.  
  503. No
  504.    lets you exclude a program from an operation that uses wildcards.  For
  505. example, if you wanted to list all the files on this disk other than those
  506. that have an ".EXE" extension, you could say NO *.EXE DIR *.* /W.
  507.  
  508. PramJam (PJ)
  509.    a program that lets you pass parameters to programs that normally do not
  510. accept parameters from the DOS command line.  PJ works by creating a loader
  511. program for each program that you want to call with the parameters you want to
  512. pass to the program.  Other utilities in the library to accomplish the same
  513. task, but in a more flexible and less initially complicated manner, are
  514. STACKEY and KBSTAK.  PJ is presented here for times when these other programs
  515. don't do the job.
  516.  
  517. Rep
  518.    Knowledge Based Solutions, Inc.
  519.    $?
  520. is a prefix that allows DOS commands to be repeated.  Dummy parameters can be
  521. defined on the DOS command line and replaced according to the contents of the
  522. standard input file (STDIN, see DOS manual, pg 10-4 to 10-7).  The STDIN may
  523. be entered via the keyboard "redirected" from a data file, or "piped" from
  524. another command.  A facility is provided which allows STDIN and STDOUT to be
  525. redirected for the DOS command also.
  526.  
  527. Wild
  528.    Lazo, Charles III
  529.    $0
  530. lets you use wild card parameters with programs that normally do not allow
  531. wild cards.
  532.  
  533. Recall 2.2 (RCALL)
  534.    Patri-Soft ASP
  535.    $15
  536. is a file selection aid. It will scan your directory and provide you with a
  537. list of all files sorted in descending date order (newest to oldest). When you
  538. locate the file you wish to process, the program will either exit and spawn
  539. the desired application, invoke the desired application as a sub-task, or
  540. generate a batch file.
  541.  
  542. Use 1.1 (USE-LH)
  543.    LAN Helpers
  544.    $10
  545. lets you pass multiple file names to a program or batch file. It also has a NOT
  546. parameter. For example: to backup all files except *.BAK and *.OLD, you would
  547. type USE NOT *.BAK *.OLD ; BACKUP C:\*.* A: /S
  548.  
  549. Xstream
  550.    Pharis, Mark
  551.    $0
  552. executes a program on each member of a list of file names.  This program
  553. receives a list of filespecs either by way of expanding the wild card
  554. parameters given by the user on the command line, or by way of a pipe from
  555. another program.  It then executes whatever program the user specified on the
  556. command line, using the stream of file specifications as parameters to the
  557. executable program.  `C' source included.
  558.  
  559. 1945 CHKDSK Replacements
  560. ------------------------
  561. Ckfrag
  562.    Randolph, Donald
  563.    $0
  564. is a hard disk defragmentation aid. It executes CHKDSK *.* against all the
  565. directories of a volume. It lists all fragmented files and sets the DOS
  566. errorlevel to the count of files (or blocks) involved. Turbo Pascal source
  567. code is included.
  568.  
  569. DFall
  570.    Wallace, Jack
  571.    $0
  572. displays the amount of disk space for multiple drives or partitions, as well
  573. as total and free DOS RAM memory. `C' and assembler source code are included.
  574.  
  575. Dstats 3
  576.    Lazo, Charles III
  577.    $0
  578. provides disk space information whose output listing can be user-designed.  It
  579. is smaller and faster than CHKDSK.
  580.  
  581. Free 1.1
  582.    Perkel, Marc
  583.    $0
  584. shows free disk space in absolute amounts and percentage, DOS memory, and EMS
  585. memory.  It is much faster than using CHKDSK.
  586.  
  587. GrafDisk (GRAFDSK)
  588.    OSCS Software Development, Inc.
  589.    $0
  590. reports free space on drives using a very attractive graphical interface.
  591.  
  592. Memsum2
  593.    Richmond, Jerry
  594.    $?
  595. reports how much memory is being used and is available for use.  Faster than
  596. CHKDSK.
  597.  
  598. Newchk
  599.    Meier, Brian
  600.    $0
  601. is a CHKDSK replacement which graphically displays disk usage with a 3-D bar
  602. graph and cylinder.  EGA required.
  603.  
  604. PCstat
  605.    Woeger, Robert
  606.    $?
  607. shows you disk space and memory statistics similar to CHKDSK, but much more
  608. quickly on a hard disk. For example, CHKDSK on a 30meg hard disk took over 25
  609. seconds while PCSTAT took as little as half a second. The differences are
  610. negligible on floppies. The author is no longer at the address provided in the
  611. documentation.
  612.  
  613. --------------------------------
  614. END OF SMALL PROGRAMS DISK #1945
  615. --------------------------------
  616.  
  617.  
  618. Tasker 1.95a [TASKER]
  619.    SkinnyMan Applications
  620.    $15
  621. will execute any program and parameters, or command line input at any
  622. prescheduled time. It uses any specified taskfile, and features LAN
  623. compatibility, logging feature, screen redirection during task execution
  624. and more. (Special order from the March 1994 CD: 38k.)
  625.  
  626.  
  627. -------------------------
  628. 2462 DOS Utilities, Other          Small Programs Disk
  629. -------------------------
  630.  
  631. Config
  632.    RSE Incorporated
  633.    $0
  634. allows you to easily change the hot keys and colors of those utilities that do
  635. not have configuration programs.
  636.  
  637. DT
  638.    Woodward, Woody
  639.    $0
  640. is just a little utility that shows the system date and time, which can also
  641. be redirected to a file.
  642.  
  643. ETime 1.04m
  644.    Kerber, George
  645.    $5
  646. is a non-memory-resident timer for DOS. It stores the time in a file with a
  647. name specified on the command line and the second time you run it with the
  648. same name, it calculates and displays the elapsed time. You can specify as
  649. many different names as you wish, allowing you to time multiple events at
  650. once. A hard disk is recommended.
  651.  
  652. FixColor
  653.    is a patch to get COMMAND.COM to set your choice of screen color on
  654. startup. Information is given for all versions of DOS from 2.0 to 3.3.
  655.  
  656. Incr 1.03m
  657.    Kerber, George
  658.    $5
  659. is a simple, but useful utility for maintaining one or more counters. It can
  660. be used to keep track of how many times a program has been run or a computer
  661. booted.
  662.  
  663. INT(ernal) 1.0 (INTERNL)
  664.    Masaki, David
  665.    $0
  666. modifies COMMAND.COM to disable, restore, and rename internal DOS commands such
  667. as DEL, DIR, ECHO, CLS, CD, DATE, TIME, PROMPT, PATH, VOL, etc. This could be
  668. done with a file editor such as Norton's Utilities or PC-Zap (U1-05: 0283), but
  669. INT is much more convenient.
  670.  
  671. An example of how INT can be used is to disable DEL and rename a verify-delete
  672. utility like DLT to DEL. Then whenever you (or someone using your machine) types
  673. DEL *.EXE you get a verify-delete instead of having all your EXE files disappear
  674. without warning.
  675.  
  676. MoreHandles 2.0 (MOREHAN)
  677.    Computer Tyme ASP
  678.    $28
  679. is a 9k TSR which allows you to open more than 20 file handles in a single DOS
  680. program.
  681.  
  682. Nosy Prompter (NP2)
  683.    Nelson, Russell
  684.    $0
  685. loads into memory and thereafter warns you any time you have shelled to DOS
  686. from some program. NP warns you by adding the names of any shelled programs to
  687. the end of your DOS prompt. We were ready to add NP to our AUTOEXEC.BAT as
  688. soon as we saw it. Too many times have we shelled to DOS, forgotten that we
  689. had done so, and then forgot to go back and save our work or tried to load
  690. another program and run out of memory. Asssembler source code is included.
  691. Requires DOS 3+. (res:5k)
  692.  
  693. NoTime 0.1
  694.    Sawada, Dr. Masaaki
  695.    $10
  696. prevents people from using your computer facilities (keyboard, diskette,
  697. video, serial port and printer port) at specified times to prevent
  698. unauthorized tampering.  (res:3k)
  699.  
  700. QT
  701.    tells the time is a casual way: "It's about twenty to four."
  702.  
  703. RamMap 1.0
  704.    Perkel, Marc
  705.    $0
  706. displays what is in memory and can free up some minor amounts of wasted
  707. memory.
  708.  
  709. Share
  710.    RainTree Computer Systems
  711.    $0
  712. is a text file describing why you need SHARE with DOS 4.01 and the risks
  713. that you run by not using it.
  714.  
  715. SlowPC 1.0
  716.    Sawada, Masaaki
  717.    $0
  718. slows down a fast PC, primarily for playing older games.
  719.  
  720. Smart Prompt (SPMPT)
  721.    Lazo, Charles
  722.    $15
  723. is a 3k TSR that lets you add system information to your DOS prompt. Information
  724. available includes the amount of free DOS RAM, the time in a.m./p.m. format
  725. (rather than 24-hour format), the name of the program you have shelled out of,
  726. if any, and the particular AUTOEXEC.BAT and CONFIG.SYS pair that you booted
  727. with. DOS 3.0 or later is required.
  728.  
  729. Tad
  730.    sets system time and date on IBM AT's.
  731.  
  732. Tee
  733.    lets you view output that is being PIPE.  (See your DOS manual for info
  734. about PIPING.)
  735.  
  736. TextMODE 1.0
  737.    Microsystems Software, Inc.
  738.    $10
  739. solves the problem that most TSR's are text-based and will not pop up over a
  740. graphics-based program. You pop up TextMODE first and it saves the necessary
  741. graphics data and puts the screen into the text mode so that you can pop up a
  742. text-based TSR. TextMODE takes 7k of DOS RAM, 1.2k if you have expanded memory,
  743. 0k if you load it high.
  744.  
  745. Timer
  746.    times the execution of a program.
  747.  
  748. X 1.15 (X-JR)
  749.    Rubin, Jon
  750.    $10
  751. brings up a menu of up to 16 executable files in the current directory and lets
  752. you pick one with a single keypress. This would be good for a Games or Utlities
  753. directory, though the 16-file limit could be restrictive.
  754.  
  755. Xmore
  756.    is a replacement for DOS's MORE command.
  757.  
  758. YourTurn 1.0 (YOURTUR)
  759.    Sawada, Dr. Masaaki
  760.    $10
  761. restricts the access of files with certain file extensions for open, delete,
  762. rename, etc.  It produces a log file with the date, time, and a record number
  763. along with the name of the file accessed and the type of access which was
  764. allowed or denied and the password owner who accessed it.
  765.  
  766. --------------------------------
  767. END OF SMALL PROGRAMS DISK #2462
  768. --------------------------------
  769.  
  770.  
  771. -----------------------------
  772. 12350 DOS Utilities, Other #2          Small Programs Disk
  773. -----------------------------
  774.  
  775. 6th Sense 2.0 (6THSENS)
  776.    Tay-Jee Software ASP
  777.    $15
  778. is a set of utilities for DOS 6.0. It includes front ends for DIR and
  779. FORMAT. There is also a collection of DOSKEY macros included. It
  780. features menu-driven selection of command options, support for
  781. environment variables and more.
  782.  
  783. BestBat
  784.    Montaron, Daniel
  785.    $0
  786. is a set of DOS utilities: add a directory to an environment string (eg:
  787. change LIB=C: in the environment to LIB=C:;C:\TEMP), add a directory to
  788. the defined PATH, verified deletion of a list of files, and more.
  789.  
  790. DOS5Ed
  791.    Zachary, Allan
  792.    $0
  793. patches a copy of the DOS 5.0 editor so that it will list all the files in the
  794. current directory instead of just files with the TXT extension.
  795.  
  796. DOSTrace 2.0 (DOSTRCE)
  797.    Bridges, Steve
  798.    $25
  799. is a TSR that will trace DOS calls your programs are making. It will show you
  800. open files, what's in memory, and allow you to display and edit main memory. It
  801. also has a primitive memory protection option. Requires 286+. May be
  802. incompatible with 4DOS.
  803.  
  804. HelpCOM 1.2 (HC)
  805.    Friesen, Geoff
  806.    $0
  807. lets you add a help screen to any .COM program. You simply prepare a
  808. help screen in straight ASCII (text) and use HelpCOM to append it to the
  809. program file. Then when you type the program name followed by a question
  810. mark, the help screen will be displayed. This is great for those little
  811. utilities which don't offer a help screen of their own.
  812.  
  813. L. P. Thomason, Jacksonville, FL: "This is a good little program but
  814. there's a small problem. The help text of the program itself is in
  815. excess of 24 lines, and scrolls of the screen when used. I wrote the
  816. following batch file and now it works fine."
  817.  
  818.                              HELPSTOP.BAT
  819.                              @ ECHO OFFCLS
  820.                              %1 /? | MORE
  821.  
  822. Quick Run (QRUN)
  823.    Leithauser, David
  824.    $5
  825. displays a 5-column list of executable files in the current directory, and lets
  826. you run one by clicking on it with a mouse. Batch files are shown in red,
  827. COM/EXE files in green.
  828.  
  829. For some reason, if the screen gets full, you are asked to press the space bar
  830. and half the screen scrolls away before you get a chance to select a file.
  831. Normally, this will not enter into play.
  832.  
  833. SmartPrompt (SMARTP)
  834.    Gibson, Steve
  835.    $0
  836. is a TSR SmartDrive DOS prompt suspender. It helps prevent drive
  837. partition corruption in DOS 6.0 systems.
  838.  
  839. SYSLog 1.2
  840.    Solid Oak Software
  841.    $15
  842. is an 8k TSR that automatically keeps a log of all programs run, files copied,
  843. files deleted, files created, and files opened, as well as the date and time
  844. that each activity occurred.
  845.  
  846. ---------------------------------
  847. END OF SMALL PROGRAMS DISK #12350
  848. ---------------------------------
  849.  
  850.  
  851. --------------------------------
  852. 2006 Specific Computers, Speaker          Small Programs Disk
  853. --------------------------------
  854.  
  855. 2006 Speaker
  856. ------------
  857. Bell
  858.    changes the sound of the beep your PC makes when it is displeased with with
  859. your performance. Now it's more of a loving coo.
  860.  
  861. Bells 1.4
  862.    Sapphire Software
  863.    $?
  864. allows you to change the sound of the *beep* that your computer makes.  You can
  865. change it to a little song or a unique sound effect very easily with the BEEPINS
  866. program.  No musical or computer expertise is required. (res:1k)
  867.  
  868. BellsTD 1.5
  869.    Donnelly, Tom
  870.    $0
  871. replaces your computer's BEEP with a special sound effect or tune of up to
  872. nine notes.  It is easy to change the beep or tune.  TSR: 1k.
  873.  
  874. Fixbeep
  875.    Blaszczak, Mike
  876.    $?
  877. lets you change the frequency of the beep in DOS to a less piercing tone of your
  878. own choosing.
  879.  
  880. Silence
  881.    disables the speaker.
  882.  
  883. Silencr 2.1
  884.    Fallen, Dave
  885.    $0
  886. silences programs that insist on making a lot of loud, unwanted sounds.
  887. Unlike some utilities that work on a hardware level to silence the speaker,
  888. Silencer lets you silence one particular program without disabling the speaker
  889. for other programs.  It actually creates a new program file (leaving the
  890. original unchanged) in which any calls to the speaker (OUT 61,AL) are NOP'ed
  891. out. Basic source code is included.
  892.  
  893. StopIt
  894.    Moritz, Rowena
  895.    $0
  896. stops the speaker when some program has left it beeping ceaselessly.
  897.  
  898. Tran
  899.    Neely, Stephen
  900.    $0
  901. is a text-to-speech program.  It can read text files or take input from the
  902. keyboard, translate normal English spelling to phonemes, and sound out each
  903. phoneme through the speaker.  There are several options that allow you to adjust
  904. the timing and pitch to your machine, save the phoneme translations to a file,
  905. and more.  Frankly, we could not understand a word it said, but it might do
  906. better on other machines and the ability to save the phonemes could be useful
  907. for other applications.
  908.  
  909. VidVoice (VIDVOIC)
  910.    Graham, Keith P.
  911.    $0
  912. will echo letters to the speaker port.
  913.  
  914.  
  915. Specific Computers:
  916. ------------------
  917. 2006 AT
  918. -------
  919. CM
  920.    Graham, Keith P.
  921.    $0
  922. is a quick and dirty AT CMOS date and time utilities.
  923.  
  924. FixDsk 2.0
  925.    prevents disk errors when running at 8 mhz.
  926.  
  927. Fast-AT
  928.    is a text file that tells you how to change crystals and speed up an AT.
  929. (on disk #0279)
  930.  
  931. Num_Off
  932.    Arment, Homer
  933.    $?
  934. may be used from your autoexec.bat file to turn the num lock key off on your
  935. PC-AT.
  936.  
  937. ROMU
  938.    Graham, Keith P.
  939.    $0
  940. is an AT ROM disk type utility for ROM Burners.
  941.  
  942.  
  943. 2006 AT&T 6300
  944. --------------
  945. ATTclock (ATTCLOC)
  946.    is a resident alarm clock for the AT&T 6300 that will display the time in
  947. the corner of the screen and optionally wake you up for lunch and when it's
  948. time to go home.
  949.  
  950.  
  951. 2006 Compaq
  952. -----------
  953. Compaq
  954.    will tell you how to increase 64kb to 640kb on a Compaq computer
  955.  
  956. Config.286
  957.    tells how to put a Compaq-286 into the dual-monitor mode on bootup.
  958.  
  959. CPQ386
  960.    is a text file containing the results of various "benchmark" (performance
  961. timing) tests on the Compaq 386 computer.
  962.  
  963. DPU
  964.    allows you to set various options for the Compaq Deskpro (and presumably
  965. other Compaq's) from the DOS command line (and more usefully) from batch
  966. files. The options which can be set are CapsLock, NumLock, ScrollLock, Clock
  967. Speed (slow or fast) and Keyclick volume.
  968.  
  969. SpeedV and SpeedC
  970.    let you check the speed setting on a Compaq 286 and change the speed
  971. setting.
  972.  
  973. 2006 Toshiba
  974. ------------
  975. Readclk
  976.    Gordon, Guy
  977.    $?
  978. reads the BIOS date and time (INT 1Ah) and sets the DOS date and time.  It is
  979. used to set the system time to match that of an internal clock/calendar.
  980.  
  981. --------------------------------
  982. END OF SMALL PROGRAMS DISK #2006
  983. --------------------------------
  984.  
  985.  
  986. ------------------
  987. 0436 TSR Utilities          Small Programs Disk
  988. ------------------
  989.  
  990. "TSR" stands for "Terminate, Stay Resident". A TSR is a program that stays in
  991. memory once you load it and can be popped up or can perform some task while you
  992. are running other programs. The utilities on this disk are for working with
  993. TSR's.
  994.  
  995. ChkTSR 1.01
  996.    Dunford, Christopher J.
  997.    $0
  998. tells you whether or not a specific program is currently resident in memory.
  999. An errorlevel is returned for use in batch files.  CHKTSR may be useful in
  1000. situations where a batch file or other process requires that certain programs,
  1001. primarily TSRs, be resident (or not resident).  DOS 3.0 or later is required.
  1002.  
  1003. Files 1.01 (FILESJR)
  1004.    Ritchey, J. P.
  1005.    $0
  1006. will, in conjunction with Quarterdeck's QEMM-386, allow more files in High
  1007. Memory, freeing up more low memory for application use.
  1008.  
  1009. Fix 2.7
  1010.    Graham, Keith P.
  1011.    $0
  1012. reclaims wasted space used when memory resident programs are loaded by
  1013. returning their environment block to the memory pool. The amount of space
  1014. saved depends on the size of your environment and the number of TSR's you use.
  1015.  
  1016. HILoad
  1017.    Shannon, Larry
  1018.    $0
  1019. will load TSR's into what should be unused parts of memory. The documentation
  1020. has a very good explanation of how memory is used and what memory should be
  1021. available to you.
  1022.  
  1023. Instal
  1024.    lets you remove resident utilities from memory.
  1025.  
  1026. Memres 4.1
  1027.    Jordan, Ed
  1028.    $0
  1029. lets you remove resident programs from memory. MemRes will now display the
  1030. vector numbers which are being replaced from the backup copy of the table. In
  1031. addition, the name of the memory resident program will be displayed. Assembler
  1032. source code is included.
  1033.  
  1034. Min-Mem 2.0
  1035.    Biologic Company
  1036.    $39
  1037. is a 15k TSR that will free up memory used by a large TSR by swapping it to
  1038. your disk. For example, if you have a TSR that takes 120k, it can be swapped
  1039. to disk and all of its memory will be freed for other applications, except for
  1040. the 15k used by Min-Mem itself.
  1041.  
  1042. Overhead (OVRHDED)
  1043.    Ross, Ed
  1044.    $?
  1045. has the CPU execute a bunch of instructions (no I/O) and tells you how long it
  1046. took. The purpose is for you to see how much overhead your resident utilities
  1047. is adding to your processing time, so you run it once with all your usual
  1048. TSR's loaded and once without and compare the times. Testing on a Compaq 8086
  1049. with and without over 200k of TSR's was a real eye-opener. Rather than dumping
  1050. all of your TSR's cold turkey, we suggest that you just compromise by removing
  1051. them from memory (see Mark-Release) before running programs that are
  1052. CPU-intensive.
  1053.  
  1054. PMap 2.10
  1055.    Dunford, Christopher J.
  1056.    $0
  1057. displays memory usage statistics for both DOS RAM and EMS. We use this primarily
  1058. as a quick way to see what TSR's are in memory and how much space they take, as
  1059. well as to see if we have shelled to DOS from some program and forgotten about
  1060. it. Features allow you to display only DOS memory, display device driver info,
  1061. and display only expanded memory and show the segment address of the
  1062. environment. You can also specify which TSR names to look at by entering the
  1063. first letter of the name. For example, PMAP S* would give info about Sidekick
  1064. (assuming it is in memory). The maximum allowable number of files, buffers, and
  1065. FCBs is 255.
  1066.  
  1067. ResDel & Tablev
  1068.    Jordan, Ed
  1069.    $?
  1070. lets you remove resident utilities from memory. Resdel works a little
  1071. differently than the Mark/Release utilities already on the library in that the
  1072. latter will remove all TSR's back to the last Mark and Resdel will let you
  1073. strip out one at a time without having to "mark" each one first. It also
  1074. provides a means to remove all TSR's at once, but the procedure for creating
  1075. the necessary "vector table file" was not clear to us.
  1076.  
  1077. SeeMem 2.0
  1078.    Housh, Tedrick A. Jr.
  1079.    $0
  1080. will display information about all TSRs and the current use of DOS memory by
  1081. the operating system. This includes upper memory blocks, high memory area, XMS
  1082. extended memory and expanded memory. It makes full use of the new memory
  1083. facilities provided by DOS 5.0 and provides information similar to that
  1084. provided by the DOS utility MEM. Support is also provided for DR-DOS 6.0 and
  1085. 4DOS 4.0.
  1086.  
  1087. Showmap 2.0
  1088.    Kuri, Carlos
  1089.    $10
  1090. is a pop-up utility that displays a map of memory similar to PMAP, except that
  1091. it does not show expanded memory. It does let you view the environment for any
  1092. block and to page through memory and the PSP. (res:9k)
  1093.  
  1094. ShowTSRs
  1095.    Gilbert, Tom
  1096. displays the map of memory blocks and interrupts, including EMS memory. The
  1097. display can be scrolled up and down for easier viewing. The 65k assembler
  1098. source code is included.
  1099.  
  1100. TSRCOM 3.5 ("Mark/Release") 01-94 CD
  1101.    Kokkonen, Kim
  1102.    $0
  1103. is a group of programs useful in managing memory-resident utilities.  TSR
  1104. stands for "Terminate and Stay Resident".  MARK.COM and RELEASE.COM are used
  1105. to remove memory-resident programs from memory, without the usual problems of
  1106. creating holes in memory or leaving interrupts dangling.  DISABLE will disable
  1107. a TSR without actually removing it from memory.  EATMEM helps solve system
  1108. problems cause by the specific location of memory of a TSR.  MAPMEM shows you
  1109. where TSR's reside in memory and how much memory each one consumes.  MARKNET
  1110. is like MARK, but saves a more complete picture of system status.  RELNET
  1111. removes TSR's marked with MARKNET.  DEVICE shows what device drivers are
  1112. loaded. DOS 6 compatibility is provided, and will work with programs loaded
  1113. into high memory.
  1114.  
  1115. --------------------------------
  1116. END OF SMALL PROGRAMS DISK #0436
  1117. --------------------------------
  1118.  
  1119.  
  1120. ----------------------
  1121. 12165 TSR Utilities #2          Small Programs Disk
  1122. ----------------------
  1123.  
  1124. GrowP 2.0 (GROWP) 09-93 CD
  1125.    Tessler's Nifty Tools
  1126.    $0
  1127. is a 2k TSR which visually indicates in the DOS prompt how many copies
  1128. of COMMAND.COM are invoked in the current chain. It is easy to shell to
  1129. DOS from a program and later forget that you are shelled. With GrowP,
  1130. you won't forget.
  1131.  
  1132. MarxPop
  1133.    Marc Perkel
  1134.    $25
  1135. lets you turn any program into a pop-up TSR loaded into high memory. Up
  1136. to 10 different programs can be loaded. Unlike Fast Load which only
  1137. stores programs in high memory for running from the DOS command line,
  1138. MarxPop can bring up a program by pressing a hot key.
  1139.  
  1140. PopUp 1.12
  1141.    RC Software
  1142.    $29
  1143. turns any program into a TSR using only 6K of DOS RAM. It supports swapping to
  1144. EMS, XMS, and disk, and can pop up when you are at the DOS prompt and pop up
  1145. over 43-line EGA and 50-line VGA displays, in addition to the normal 25-line
  1146. mode.
  1147.  
  1148. WorkTSRs 3.1
  1149.    Tom Gilbert
  1150.    $0
  1151. lets you manage resident ("pop-up") utilities. This is a version of Kim
  1152. Kokkonen's Mark/Release set of utilities that has been rewritten in assembly
  1153. language. A unique feature allows menu selection of TSR's for installation or
  1154. update. Assembler source is included.
  1155.  
  1156. Wrapper 1.0
  1157.   Gardner, Philip B.
  1158.   $25
  1159. lets you load programs (including TSRs) in CONFIG.SYS, even though they are
  1160. not device drivers themselves. For example, a programmer could load a
  1161. debugger in CONFIG.SYS and trace/debug the initialization of device drivers
  1162. they have written. Or you could load a TSR disk cache before Stacker in
  1163. CONFIG.SYS in order to get better performance.
  1164.  
  1165. ---------------------------------
  1166. END OF SMALL PROGRAMS DISK #12165
  1167. ---------------------------------
  1168.  
  1169.  
  1170. 4DOS 5.0 [4DOS50A, 4DOS50B]
  1171.    J. P. Software ASP
  1172.    $69
  1173.    #7589/1890 [2 disks] [March 1994 CD]
  1174. is a complete replacement for COMMAND.COM, the command processor that comes
  1175. with DOS. 4DOS is a much more powerful command processor, offering more
  1176. powerful versions of typical DOS commands and adding numerous new commands.
  1177. 4DOS also has on-line help for its commands, and "normal" command line
  1178. editing.
  1179.  
  1180. There is a complete ASCII table, support for non-English characters in
  1181. filenames, environment variables, and aliases. Batch files can be nested six
  1182. levels deep. Environment variables return the day of the week, screen rows,
  1183. and screen columns.
  1184.  
  1185. If you seldom work in DOS, none of this may mean much to you, but anyone who
  1186. tries much pd/shareware software probably spends enough time to make the power
  1187. and flexibility of 4DOS a worthwhile addition to your system. It can load its
  1188. resident portion and/or the master environment into DOS 5 Upper Memory Blocks,
  1189. and supports swapping to XMS extended memory.
  1190.  
  1191. Network support is included, and enhanced wildcards let you specify lists or
  1192. ranges of characters to include or exclude. A command history can be viewed
  1193. and executed from a pop-up window as well as at the command line. The program
  1194. is compatible with DESQview, DR-DOS, and Windows 3.0. A hard disk is required.
  1195.  
  1196.  
  1197. 4Zip
  1198.    Weinstein, Iram J. ASP
  1199.    $15
  1200.    #7589/3857
  1201. is a utility for 4DOS that saves file descriptions along with the files as they
  1202. are compressed. It is used with the file compression program PKZIP (#1705).
  1203.  
  1204.  
  1205. 4Utils [4UTILS]
  1206.    Tom Bowden
  1207.    $0
  1208.    12763  [March 1994 CD]
  1209. is a collection of utilities for use with 4DOS. 4DESC 1.6 is a full
  1210. screen 4DOS file description editor with cut and paste capability. 4FF
  1211. 1.7 displays file descriptions from within ZIP, ARJ, and LZH files.
  1212. Turbo Pascal 7.0 source code is included.
  1213.  
  1214.  
  1215. ------------------------
  1216. 7589/3276 4DOS Utilities          Small Programs Disk
  1217. ------------------------
  1218.  
  1219. 4Edit 1.1
  1220.    Weinstein, Iram J. ASP
  1221.    $15
  1222. provides a full-screen editor for creating and editing 4DOS description files.
  1223.  
  1224. 4Files 3.01
  1225.    Hand-Crafted Software ASP
  1226.    $20
  1227. is a multi-purpose file management tool. Features include file annotation;
  1228. file browsing and editing, file finding and archive listing; and directory
  1229. tree navigation. File notes of up to 40-characters can be created and edited
  1230. in the 4DOS format. Editing features includ cut-paste, left/right
  1231. justification, cursor controls and more. Sorting by file extension, size,
  1232. date/time, and file-note are available on-the-fly or via command line
  1233. switches. Requires CGA or better video.
  1234.  
  1235. CED24DOS 0.90 (CED2-4D)
  1236.    Huras, David
  1237.    $5
  1238. reads in a file of CED synonyms and converts them into 4DOS aliases.
  1239.  
  1240. --------------------------------
  1241. END OF SMALL PROGRAMS DISK #3276
  1242. --------------------------------
  1243.  
  1244.  
  1245. DiZk4D
  1246.    Unicorn Software Limited ASP
  1247.    $25
  1248.    #3125
  1249. is a disk cataloger and labeling program for use with 4DOS. With this program,
  1250. you can read a floppy into memory and save data; enter a 21 character title,
  1251. four-digit Disk number, three-character code and two lines of remarks up to 65
  1252. characters each; print labels, listings, and catalogs; perform searches on any
  1253. filename, description, date, title, disk number, code, or remarks; use auto
  1254. numbering; create a dBase compatible data file; disk sleeve printing and more.
  1255.  
  1256.  
  1257. DiZkND
  1258.    Unicorn Software Limited ASP
  1259.    $29
  1260.    #3762
  1261. is for cataloging and labeling floppy disks under NDOS. It lets you enter a
  1262. 21-character title, four-digit disk number, three-character code and two lines
  1263. of remarks up to 65 characters each. The program can also print a variety of
  1264. disk labels that include file names, or file names and descriptions. 5.25" disk
  1265. sleeves can also be printed. Other features include Extended and Expanded memory
  1266. support, auto-numbering, search capabilities, and much more.
  1267.  
  1268.  
  1269. On-Call
  1270.    Forest Hill Software, Inc
  1271.    $25-$55
  1272.    #7064/1184
  1273. manages memory-resident (TSR/pop-up) programs. By swapping the programs to a
  1274. disk drive until they are needed, On-Call can limit the memory required by all
  1275. of your TSR's to that required of the largest TSR plus the 40k that On-Call
  1276. uses itself.
  1277.  
  1278. For example, if your largest TSR is 100k and you would like to use four
  1279. smaller TSR's that total another 200k, On-Call will swap the smaller ones in
  1280. and out of memory until needed, using just 100k for the largest and 40k for
  1281. itself. This swapping only works if the TSR's are the kind that only do
  1282. something when you pop them up, such as Sidekick, not the kind that must
  1283. always be active to monitor the system, such as a keyboard macro program or a
  1284. screen blanker.
  1285.  
  1286.  
  1287. ALT
  1288.    Instinct Software
  1289.    $73
  1290.    #7064/1665 [2 disks]
  1291. is a very powerful, professional quality, memory-resident system that includes
  1292. task swapping (being able to leave one program active while swapping into
  1293. another partition to run another program). In addition, it includes excellent
  1294. versions of the standard desktop type of programs: rolodex, file manager, a
  1295. word processor that will edit any size file, three types of calculators, an
  1296. appointment calendar, cut and paste, a screen clock with hourly chimes,
  1297. keyboard macros and more. The program supports DOS 4.0, task switching with
  1298. EGA and VGA graphics screens, and a mouse.
  1299.  
  1300. A few features have been limited in the "shareware" version: only two swapping
  1301. partitions are allowed, only one of the three types of calculators can be
  1302. used, the rolodex is limited to 20 entries, and some other minor limitations
  1303. exist. Normally, we do not accept crippled programs, but even with its
  1304. limitations, the functionality of ALT is significant. A hard disk and 70K are
  1305. required. DOS 5.0 is supported.
  1306.  
  1307.  
  1308. Back & Forth Professional
  1309.    Progressive Solutions, Inc.
  1310.    $70
  1311.    #7568/2373 [5 disks]
  1312. is a program-swapping utility that should make you think twice about getting
  1313. Software Carousel. B&F will let you load up to 20 different programs
  1314. (spreadsheets, word processors, DOS windows, whatever) at once and move around
  1315. them with the press of a key.
  1316.  
  1317. Setup from start to finish is extremely easy - much easier than Software
  1318. Carousel. It easily passed our usual test of setting up the program and using
  1319. it before looking at the docs. TSR partitions are easy to setup by defining a
  1320. program with the "STAY AT DOS" option.
  1321.  
  1322. B&F supports swapping of programs to hard disk, RAM disks or expanded memory
  1323. and takes only 12-15k of memory itself, and can even be reduced to as little
  1324. as 1K. It supports a mouse, CGA and VGA screens, most EGA graphics screens,
  1325. and Ultravision. It also supports ANARKEY, Ventura, PCED 2.0, and Vstack. A
  1326. cut/paste module is available with an auto dialer, as well as a background
  1327. clock. Support for running programs on networks is also included. Support is
  1328. provided for all known extended text modes of various EGA/VGA boards, and for
  1329. most VGA chipsets up to 1024x768. A TSR is included to handle EGA screen
  1330. problems. Additional features include support for DOS 5's DOSKEY and CED
  1331. command line; a multifunction RPN calculator and a simple tape calculator; a
  1332. Desktop editor, Rolodex, and appointment book/calendar/schedular; graphic
  1333. screen blanker; support for DOS 5's UMB style memory; support for
  1334. UltraVision's UL (underline) utility; and much more.
  1335.  
  1336.  
  1337. DVAP Menu (DESQview Application Program Menu)
  1338.    Stewart, Gregory
  1339.    $0
  1340.    #1828
  1341. provides nested menu support for the DESQview environment.  In other words, it
  1342. lets you open windows that are not listed on the main DESQview ("DV") window
  1343. list.  (See Retail Products for DV.)  DVap Menu is invoked from the DESQview
  1344. Open Window menu, reads a menu definition file and displays a program
  1345. selection menu which looks very much like the DESQview Open Window menu.
  1346.  
  1347. Programs are started from this panel by selecting them via mouse or keyboard
  1348. in the same manner as from the Open Window menu; otherwise, windows are
  1349. treated the same as any other DV window (eg: windows may be zoomed, moved and
  1350. closed from the DV window).
  1351.  
  1352.  
  1353. Swap Utilities
  1354.    Innovative Data Concepts ASP
  1355.    $25 each
  1356.    #1797
  1357. reduces the RAM needed by specific TSR's to only about 10k. Offers 6 programs to
  1358. reduce RAM need by SideKick, SK+, Tornado, Metro, MemoryMate, PCTools Shell,
  1359. PCTools Desktop, PC Tool Deluxe, and the Norton Guides and SwapDOS. SwapDOS lets
  1360. you run a second program without having to save and quit the first one. The
  1361. memory used by the first one is swapped to expanded or extended memory or to a
  1362. disk file, thus freeing up DOS RAM for the second program to use. An example
  1363. would be to swap out of a text editor to run a compiler. Requires DOS 3+.
  1364. DesqView is supported along with support for EGA/VGA cards.
  1365.  
  1366.  
  1367. Tessler's Nifty Tools 3.4 [TNT34]
  1368.    Tessler
  1369.    $19 ea.
  1370.    #20325/MegaDisk Only (12-93 CD)
  1371. is a collection of over 25 useful programs that control printers,
  1372. modems, screen output, prompts, ports, floppy drives, sound cards and
  1373. more.
  1374.  
  1375.  
  1376. TSR-Select
  1377.    Quadrant Computer Systems
  1378.    $45
  1379.    #3953
  1380. lets you run any program from within any non-graphic program. When popped up, it
  1381. displays a menu of up to 15 different programs which you can run. It works on
  1382. networks too. TSR-Select uses just 8K of DOS RAM.
  1383.  
  1384.  
  1385. VMiX 386 2.90 [VMIX]
  1386.    Borras, J. Anthony ASP
  1387.    $59
  1388.    #1206 (12-93 CD)
  1389. is a multi-tasking system for advanced users. It will allow up to four tasks
  1390. to be executing at the same time. It is ideal for hooking multiple terminals
  1391. up to a single computer. Other features include protected mode memory, task
  1392. management, virtual devices to DOS, support for DOS 5.O, interrupt driven
  1393. services to the COMM ports, support for 115.2 Kbaud, a utility for linking two
  1394. VMiX hosts serially with a virtual terminal session, support for programs that
  1395. make direct video writes at remote COMM port terminals and support for
  1396. HIMEM.SYS and other resident XMS drivers.
  1397.  
  1398. Multitasking can be controlled completely from the keyboard via hotkeys.
  1399. Remote log-in passwords and scripts are supported. Three other utilities are
  1400. provided, including a remote utility for linking two or more VMiX system, an
  1401. upper memory TSR loader for 386 computers, and a setup utility.
  1402.  
  1403.  
  1404. Format Converters
  1405.    Sydex
  1406.    $?
  1407.    #7262/2545
  1408. This disk contains utilities for reading and writing disks from other systems
  1409. that are not DOS compatible. Included are utilities for the Apricot, the DEC
  1410. Rainbow, the Eagle, and the HP 150. Also on this disk is:
  1411.  
  1412. RWAll
  1413.    ZIS Software
  1414.    $15
  1415.    #7262/2545
  1416. will allow you to read and write Amiga and Atari ST floppys with your PC.
  1417.  
  1418.  
  1419. Z80MU
  1420.    Computerwise Consulting Services
  1421.    $150
  1422.    #7262/482
  1423. allows you to run most CP/M 2.2 and Z80 software on PC's.
  1424.  
  1425.  
  1426. 22Disk 1.40 [22DSK140]
  1427.    Guzis, C. P. and Sydex
  1428.    $28
  1429.    #7262/1404 (01-94 CD)
  1430. is a media conversion utility for converting data from CP/M disk formats to
  1431. DOS or vice versa.  The 22DISK disk conversion package offers user-defined
  1432. CP/M formats in addition to the standard support for single-, double-, and
  1433. quad-density formats. It also features custom keyboard mapping.
  1434.  
  1435. Also included is a Z-80/8080 CP/M 2.2 emulator, 22NICE, which will emulate
  1436. 8080/8085/Z-80 processors with or without NEC V-series chip installed, provide
  1437. terminal emulation for most common CP/M machines, support CP/M user number to
  1438. DOS subdirectory translation, allow use of DOS pipes and utilities with CP/M
  1439. programs, support a complete set of BDOS and BIOS function interfaces,
  1440. including direct disk read/write, and is invisible to the user.
  1441.  
  1442. Warren Norwood, Weatherford, TX: "You need to include a warning that this
  1443. software will not convert CP/M-80 disks used on Apple II's with CP/M cards."
  1444.  
  1445.  
  1446. TSX-Lite 4.11 [TSX411A, TSX411B, TSX411C, TSX411D]
  1447.    S&H Computer Systems, Inc.
  1448.    $70
  1449.    20387 [February 1994 CD]
  1450. is a 32-bit operating system which supports two users and provides
  1451. multi-tasking and multi-sessions allowing each user to control up to 10
  1452. interactive sessions. It can also be used as a server to run doors from BBS
  1453. systems.
  1454.  
  1455. TSX-Lite uses the same file structure as DOS, so you can install TSX-Lite
  1456. on a DOS based computer without reformatting or partitioning your disk.
  1457. Full virtual memory support is provided with demand paging, allowing
  1458. execution of programs larger than the physical memory installed on the
  1459. computer. Requires 4Mb of memory and 10Mb of free disk space on a
  1460. non-Stacked drive. (This system comes on three 1.44MB 3.5" disks for a
  1461. special price of $9.99)
  1462.  
  1463.  
  1464. ]]]]]
  1465.  
  1466.